DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomDataSetCollection Class / Read Method / Read(Byte[]) Method

Array as Byte Array:

The Byte Array to read




In This Topic
    Read(Byte[]) Method
    In This Topic
    Creates and adds a DicomDataSet from a byte array
    Syntax
    'Declaration
     
    
    Public Overloads Function Read( _
       ByVal Array() As Byte _
    ) As DicomDataSet
    'Usage
     
    
    Dim instance As DicomDataSetCollection
    Dim Array() As Byte
    Dim value As DicomDataSet
     
    value = instance.Read(Array)
    public DicomDataSet Read( 
       byte[] Array
    )
    public:
    DicomDataSet^ Read( 
       array<byte>^ Array
    ) 

    Parameters

    Array

    Array as Byte Array:

    The Byte Array to read

    Return Value

    DicomDataSet
    Remarks
    This method uses memory stream to read a byte array and creates a new DicomDataSet and adds it to the DicomDataSetCollection.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also